home *** CD-ROM | disk | FTP | other *** search
/ Various Videogame Press Kits / Capcom E3 2005 (Press-Kit CD).7z / Capcom E3 2005 (Press-Kit CD) / Capcom E3 2005 (Press-Kit CD).iso / support / press_cd.swf / scripts / frame_1 / DoAction.as
Text File  |  2005-04-29  |  333b  |  17 lines

  1. stop();
  2. var loaded = 0;
  3. var total = 0;
  4. var percent = 0;
  5. PRELOADER.onEnterFrame = function()
  6. {
  7.    loaded = getBytesLoaded();
  8.    total = getBytesTotal();
  9.    percent = loaded / total * 100;
  10.    this._xscale = Math.round(percent);
  11.    texturban = Math.round(percent);
  12.    if(percent > 99)
  13.    {
  14.       gotoAndPlay(2);
  15.    }
  16. };
  17.